Package com.apps.test

Source Code of com.apps.test.UBCWayfindingServiceTest

/*
* @author Cole Gehlen
*/


package com.apps.test;

import static org.junit.Assert.*;

import org.junit.Test;

import com.apps.services.UBCWayfindingService;
import com.apps.services.factory.*;
import com.apps.ubc.cc.model.BuildingModel;

public class UBCWayfindingServiceTest {

  @Test
  public void test() { 
   
    UBCWayfindingService uws = UBCWayfindingServiceFactory.getUBCWayfindingService();
   
    BuildingModel bmod = uws.search("DMP");
   
   
    assertTrue(bmod.getAddress().equals("6245 Agronomy Road"));
   
   
  }

}
TOP

Related Classes of com.apps.test.UBCWayfindingServiceTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.